home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 1999 #5 / 1999 CD 5 (black).iso / Delphi3 / install / data.z / CONSTS.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-08-04  |  9.9 KB  |  261 lines

  1. unit Consts;
  2.  
  3. interface
  4.  
  5. resourcestring
  6.   SAssignError = 'Cannot assign a %s to a %s';
  7.   SFCreateError = 'Cannot create file %s';
  8.   SFOpenError = 'Cannot open file %s';
  9.   SReadError = 'Stream read error';
  10.   SWriteError = 'Stream write error';
  11.   SMemoryStreamError = 'Out of memory while expanding memory stream';
  12.   SCantWriteResourceStreamError = 'Can''t write to a read-only resource stream';
  13.   SDuplicateReference = 'WriteObject called twice for the same instance';
  14.   SClassNotFound = 'Class %s not found';
  15.   SInvalidImage = 'Invalid stream format';
  16.   SResNotFound = 'Resource %s not found';
  17.   SClassMismatch = 'Resource %s is of incorrect class';
  18.   SListIndexError = 'List index out of bounds (%d)';
  19.   SListCapacityError = 'List capacity out of bounds (%d)';
  20.   SListCountError = 'List count out of bounds (%d)';
  21.   SSortedListError = 'Operation not allowed on sorted string list';
  22.   SDuplicateString = 'String list does not allow duplicates';
  23.   SInvalidTabIndex = 'Tab index out of bounds';
  24.   SDuplicateName = 'A component named %s already exists';
  25.   SInvalidName = '''''%s'''' is not a valid component name';
  26.   SDuplicateClass = 'A class named %s already exists';
  27.   SNoComSupport = '%s has not been registered as a COM class';
  28.   SInvalidInteger = '''''%s'''' is not a valid integer value';
  29.   SLineTooLong = 'Line too long';
  30.   SInvalidPropertyValue = 'Invalid property value';
  31.   SInvalidPropertyPath = 'Invalid property path';
  32.   SUnknownProperty = 'Property does not exist';
  33.   SReadOnlyProperty = 'Property is read-only';
  34.   SPropertyException = 'Error reading %s.%s: %s';
  35.   SAncestorNotFound = 'Ancestor for ''%s'' not found';
  36.   SInvalidBitmap = 'Bitmap image is not valid';
  37.   SInvalidIcon = 'Icon image is not valid';
  38.   SInvalidMetafile = 'Metafile is not valid';
  39.   SInvalidPixelFormat = 'Invalid pixel format';
  40.   SBitmapEmpty = 'Bitmap is empty';
  41.   SScanLine = 'Scan line index out of range';
  42.   SChangeIconSize = 'Cannot change the size of an icon';
  43.   SOleGraphic = 'Invalid operation on TOleGraphic';
  44.   SUnknownExtension = 'Unknown picture file extension (.%s)';
  45.   SUnknownClipboardFormat = 'Unsupported clipboard format';
  46.   SOutOfResources = 'Out of system resources';
  47.   SNoCanvasHandle = 'Canvas does not allow drawing';
  48.   SInvalidImageSize = 'Invalid image size';
  49.   STooManyImages = 'Too many images';
  50.   SDimsDoNotMatch = 'Image dimensions do not match image list dimensions';
  51.   SInvalidImageList = 'Invalid ImageList';
  52.   SReplaceImage = 'Unable to Replace Image';
  53.   SImageIndexError = 'Invalid ImageList Index';
  54.   SImageReadFail = 'Failed to read ImageList data from stream';
  55.   SImageWriteFail = 'Failed to write ImageList data to stream';
  56.   SWindowDCError = 'Error creating window device context';
  57.   SClientNotSet = 'Client of TDrag not initialized';
  58.   SWindowClass = 'Error creating window class';
  59.   SWindowCreate = 'Error creating window';
  60.   SCannotFocus = 'Cannot focus a disabled or invisible window';
  61.   SParentRequired = 'Control ''%s'' has no parent window';
  62.   SMDIChildNotVisible = 'Cannot hide an MDI Child Form';
  63.   SVisibleChanged = 'Cannot change Visible in OnShow or OnHide';
  64.   SCannotShowModal = 'Cannot make a visible window modal';
  65.   SScrollBarRange = 'Scrollbar property out of range';
  66.   SPropertyOutOfRange = '%s property out of range';
  67.   SMenuIndexError = 'Menu index out of range';
  68.   SMenuReinserted = 'Menu inserted twice';
  69.   SMenuNotFound = 'Sub-menu is not in menu';
  70.   SNoTimers = 'Not enough timers available';
  71.   SNotPrinting = 'Printer is not currently printing';
  72.   SPrinting = 'Printing in progress';
  73.   SPrinterIndexError = 'Printer index out of range';
  74.   SInvalidPrinter = 'Printer selected is not valid';
  75.   SDeviceOnPort = '%s on %s';
  76.   SGroupIndexTooLow = 'GroupIndex cannot be less than a previous menu item''s GroupIndex';
  77.   STwoMDIForms = 'Cannot have more than one MDI form per application';
  78.   SNoMDIForm = 'Cannot create form. No MDI forms are currently active';
  79.   SRegisterError = 'Invalid component registration';
  80.   SImageCanvasNeedsBitmap = 'Can only modify an image if it contains a bitmap';
  81.   SControlParentSetToSelf = 'A control cannot have itself as its parent';
  82.   SOKButton = 'OK';
  83.   SCancelButton = 'Cancel';
  84.   SYesButton = '&Yes';
  85.   SNoButton = '&No';
  86.   SHelpButton = '&Help';
  87.   SCloseButton = '&Close';
  88.   SIgnoreButton = '&Ignore';
  89.   SRetryButton = '&Retry';
  90.   SAbortButton = 'Abort';
  91.   SAllButton = '&All';
  92.  
  93.   SCannotDragForm = 'Cannot drag a form';
  94.   SPutObjectError = 'PutObject to undefined item';
  95.   SCardDLLNotLoaded = 'Could not load CARDS.DLL';
  96.   SDuplicateCardId = 'Duplicate CardId found';
  97.  
  98.   SDdeErr = 'An error returned from DDE  ($0%x)';
  99.   SDdeConvErr = 'DDE Error - conversation not established ($0%x)';
  100.   SDdeMemErr = 'Error occurred when DDE ran out of memory ($0%x)';
  101.   SDdeNoConnect = 'Unable to connect DDE conversation';
  102.  
  103.   SFB = 'FB';
  104.   SFG = 'FG';
  105.   SBG = 'BG';
  106.   SOldTShape = 'Cannot load older version of TShape';
  107.   SVMetafiles = 'Metafiles';
  108.   SVEnhMetafiles = 'Enhanced Metafiles';
  109.   SVIcons = 'Icons';
  110.   SVBitmaps = 'Bitmaps';
  111.   SGridTooLarge = 'Grid too large for operation';
  112.   STooManyDeleted = 'Too many rows or columns deleted';
  113.   SIndexOutOfRange = 'Grid index out of range';
  114.   SFixedColTooBig = 'Fixed column count must be less than column count';
  115.   SFixedRowTooBig = 'Fixed row count must be less than row count';
  116.   SInvalidStringGridOp = 'Cannot insert or delete rows from grid';
  117.   SParseError = '%s on line %d';
  118.   SIdentifierExpected = 'Identifier expected';
  119.   SStringExpected = 'String expected';
  120.   SNumberExpected = 'Number expected';
  121.   SCharExpected = '''''%s'''' expected';
  122.   SSymbolExpected = '%s expected';
  123.   SInvalidNumber = 'Invalid numeric value';
  124.   SInvalidString = 'Invalid string constant';
  125.   SInvalidProperty = 'Invalid property value';
  126.   SInvalidBinary = 'Invalid binary value';
  127.   SOutlineIndexError = 'Outline index not found';
  128.   SOutlineExpandError = 'Parent must be expanded';
  129.   SInvalidCurrentItem = 'Invalid value for current item';
  130.   SMaskErr = 'Invalid input value';
  131.   SMaskEditErr = 'Invalid input value.  Use escape key to abandon changes';
  132.   SOutlineError = 'Invalid outline index';
  133.   SOutlineBadLevel = 'Incorrect level assignment';
  134.   SOutlineSelection = 'Invalid selection';
  135.   SOutlineFileLoad = 'File load error';
  136.   SOutlineLongLine = 'Line too long';
  137.   SOutlineMaxLevels = 'Maximum outline depth exceeded';
  138.  
  139.   SMsgDlgWarning = 'Warning';
  140.   SMsgDlgError = 'Error';
  141.   SMsgDlgInformation = 'Information';
  142.   SMsgDlgConfirm = 'Confirm';
  143.   SMsgDlgYes = '&Yes';
  144.   SMsgDlgNo = '&No';
  145.   SMsgDlgOK = 'OK';
  146.   SMsgDlgCancel = 'Cancel';
  147.   SMsgDlgHelp = '&Help';
  148.   SMsgDlgHelpNone = 'No help available';
  149.   SMsgDlgHelpHelp = 'Help';
  150.   SMsgDlgAbort = '&Abort';
  151.   SMsgDlgRetry = '&Retry';
  152.   SMsgDlgIgnore = '&Ignore';
  153.   SMsgDlgAll = '&All';
  154.   SMsgDlgNoToAll = 'N&o to All';
  155.   SMsgDlgYesToAll = 'Y&es to All';
  156.  
  157.   SmkcBkSp = 'BkSp';
  158.   SmkcTab = 'Tab';
  159.   SmkcEsc = 'Esc';
  160.   SmkcEnter = 'Enter';
  161.   SmkcSpace = 'Space';
  162.   SmkcPgUp = 'PgUp';
  163.   SmkcPgDn = 'PgDn';
  164.   SmkcEnd = 'End';
  165.   SmkcHome = 'Home';
  166.   SmkcLeft = 'Left';
  167.   SmkcUp = 'Up';
  168.   SmkcRight = 'Right';
  169.   SmkcDown = 'Down';
  170.   SmkcIns = 'Ins';
  171.   SmkcDel = 'Del';
  172.   SmkcShift = 'Shift+';
  173.   SmkcCtrl = 'Ctrl+';
  174.   SmkcAlt = 'Alt+';
  175.  
  176.   srUnknown = '(Unknown)';
  177.   srNone = '(None)';
  178.   SOutOfRange = 'Value must be between %d and %d';
  179.   SCannotCreateName = 'Cannot create a default method name for an unnamed component';
  180.  
  181.   SDateEncodeError = 'Invalid argument to date encode';
  182.   STimeEncodeError = 'Invalid argument to time encode';
  183.   SInvalidDate = '''''%s'''' is not a valid date';
  184.   SInvalidTime = '''''%s'''' is not a valid time';
  185.   SInvalidDateTime = '''''%s'''' is not a valid date and time';
  186.   SInvalidFileName = 'Invalid file name - %s';
  187.   SDefaultFilter = 'All files (*.*)|*.*';
  188.   sAllFilter = 'All';
  189.   SNoVolumeLabel = ': [ - no volume label - ]';
  190.   SInsertLineError = 'Unable to insert a line';
  191.  
  192.   SConfirmCreateDir = 'The specified directory does not exist. Create it?';
  193.   SSelectDirCap = 'Select Directory';
  194.   SCannotCreateDir = 'Unable to create directory';
  195.   SDirNameCap = 'Directory &Name:';
  196.   SDrivesCap = 'D&rives:';
  197.   SDirsCap = '&Directories:';
  198.   SFilesCap = '&Files: (*.*)';
  199.   SNetworkCap = 'Ne&twork...';
  200.  
  201.   SColorPrefix = 'Color';
  202.   SColorTags = 'ABCDEFGHIJKLMNOP';
  203.  
  204.   SInvalidClipFmt = 'Invalid clipboard format';
  205.   SIconToClipboard = 'Clipboard does not support Icons';
  206.  
  207.   SDefault = 'Default';
  208.  
  209.   SInvalidMemoSize = 'Text exceeds memo capacity';
  210.   SCustomColors = 'Custom Colors';
  211.   SInvalidPrinterOp = 'Operation not supported on selected printer';
  212.   SNoDefaultPrinter = 'There is no default printer currently selected';
  213.  
  214.   SIniFileWriteError = 'Unable to write to %s';
  215.  
  216.   SBitsIndexError = 'Bits index out of range';
  217.  
  218.   SUntitled = '(Untitled)';
  219.  
  220.   SInvalidRegType = 'Invalid data type for ''%s''';
  221.   SRegCreateFailed = 'Failed to create key %s';
  222.   SRegSetDataFailed = 'Failed to set data for ''%s''';
  223.   SRegGetDataFailed = 'Failed to get data for ''%s''';
  224.  
  225.   SUnknownConversion = 'Unknown RichEdit conversion file extension (.%s)';
  226.   SDuplicateMenus = 'Menu ''%s'' is already being used by another form';
  227.  
  228.   SPictureLabel = 'Picture:';
  229.   SPictureDesc = ' (%dx%d)';
  230.   SPreviewLabel = 'Preview';
  231.  
  232.   SCannotOpenAVI = 'Cannot open AVI';
  233.  
  234.   SNotOpenErr = 'No MCI device open';
  235.   SMPOpenFilter = 'All files (*.*)|*.*|Wave files (*.wav)|*.wav|Midi files (*.mid)|*.mid|Video for Windows (*.avi)|*.avi';
  236.   SMCINil = '';
  237.   SMCIAVIVideo = 'AVIVideo';
  238.   SMCICDAudio = 'CDAudio';
  239.   SMCIDAT = 'DAT';
  240.   SMCIDigitalVideo = 'DigitalVideo';
  241.   SMCIMMMovie = 'MMMovie';
  242.   SMCIOther = 'Other';
  243.   SMCIOverlay = 'Overlay';
  244.   SMCIScanner = 'Scanner';
  245.   SMCISequencer = 'Sequencer';
  246.   SMCIVCR = 'VCR';
  247.   SMCIVideodisc = 'Videodisc';
  248.   SMCIWaveAudio = 'WaveAudio';
  249.   SMCIUnknownError = 'Unknown error code';
  250.  
  251.   SBoldItalicFont = 'Bold Italic';
  252.   SBoldFont = 'Bold';
  253.   SItalicFont = 'Italic';
  254.   SRegularFont = 'Regular';
  255.  
  256.   SPropertiesVerb = 'Properties';
  257.  
  258. implementation
  259.  
  260. end.
  261.